home *** CD-ROM | disk | FTP | other *** search
/ LG Super CD / LG Super CD.iso / bitpim / bitpim-0.62-setup.exe / {app} / bitpim.exe / wxPython / clip_dnd.pyo (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2003-11-06  |  45.6 KB  |  841 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.3)
  3.  
  4. import clip_dndc
  5. from misc import *
  6. from gdi import *
  7. from fonts import *
  8. import wx
  9.  
  10. class wxDataFormatPtr:
  11.     
  12.     def __init__(self, this):
  13.         self.this = this
  14.         self.thisown = 0
  15.  
  16.     
  17.     def __del__(self, delfunc = clip_dndc.delete_wxDataFormat):
  18.         if self.thisown == 1:
  19.             
  20.             try:
  21.                 delfunc(self)
  22.  
  23.         
  24.  
  25.     
  26.     def SetType(self, *_args, **_kwargs):
  27.         val = clip_dndc.wxDataFormat_SetType(self, *_args, **_kwargs)
  28.         return val
  29.  
  30.     
  31.     def GetType(self, *_args, **_kwargs):
  32.         val = clip_dndc.wxDataFormat_GetType(self, *_args, **_kwargs)
  33.         return val
  34.  
  35.     
  36.     def GetId(self, *_args, **_kwargs):
  37.         val = clip_dndc.wxDataFormat_GetId(self, *_args, **_kwargs)
  38.         return val
  39.  
  40.     
  41.     def SetId(self, *_args, **_kwargs):
  42.         val = clip_dndc.wxDataFormat_SetId(self, *_args, **_kwargs)
  43.         return val
  44.  
  45.     
  46.     def __repr__(self):
  47.         return '<%s.%s instance; proxy of C++ wxDataFormat instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  48.  
  49.  
  50.  
  51. class wxDataFormat(wxDataFormatPtr):
  52.     
  53.     def __init__(self, *_args, **_kwargs):
  54.         self.this = clip_dndc.new_wxDataFormat(*_args, **_kwargs)
  55.         self.thisown = 1
  56.  
  57.  
  58.  
  59. class wxDataObjectPtr:
  60.     Get = clip_dndc.wxDataObject_Get
  61.     Set = clip_dndc.wxDataObject_Set
  62.     Both = clip_dndc.wxDataObject_Both
  63.     
  64.     def __init__(self, this):
  65.         self.this = this
  66.         self.thisown = 0
  67.  
  68.     
  69.     def __del__(self, delfunc = clip_dndc.delete_wxDataObject):
  70.         if self.thisown == 1:
  71.             
  72.             try:
  73.                 delfunc(self)
  74.  
  75.         
  76.  
  77.     
  78.     def GetPreferredFormat(self, *_args, **_kwargs):
  79.         val = clip_dndc.wxDataObject_GetPreferredFormat(self, *_args, **_kwargs)
  80.         if val:
  81.             val = wxDataFormatPtr(val)
  82.             val.thisown = 1
  83.         
  84.         return val
  85.  
  86.     
  87.     def GetFormatCount(self, *_args, **_kwargs):
  88.         val = clip_dndc.wxDataObject_GetFormatCount(self, *_args, **_kwargs)
  89.         return val
  90.  
  91.     
  92.     def GetAllFormats(self, *_args, **_kwargs):
  93.         val = clip_dndc.wxDataObject_GetAllFormats(self, *_args, **_kwargs)
  94.         return val
  95.  
  96.     
  97.     def GetDataHere(self, *_args, **_kwargs):
  98.         val = clip_dndc.wxDataObject_GetDataHere(self, *_args, **_kwargs)
  99.         return val
  100.  
  101.     
  102.     def GetDataSize(self, *_args, **_kwargs):
  103.         val = clip_dndc.wxDataObject_GetDataSize(self, *_args, **_kwargs)
  104.         return val
  105.  
  106.     
  107.     def SetData(self, *_args, **_kwargs):
  108.         val = clip_dndc.wxDataObject_SetData(self, *_args, **_kwargs)
  109.         return val
  110.  
  111.     
  112.     def IsSupportedFormat(self, *_args, **_kwargs):
  113.         val = clip_dndc.wxDataObject_IsSupportedFormat(self, *_args, **_kwargs)
  114.         return val
  115.  
  116.     
  117.     def __repr__(self):
  118.         return '<%s.%s instance; proxy of C++ wxDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  119.  
  120.  
  121.  
  122. class wxDataObject(wxDataObjectPtr):
  123.     
  124.     def __init__(self, this):
  125.         self.this = this
  126.  
  127.  
  128.  
  129. class wxDataObjectSimplePtr(wxDataObjectPtr):
  130.     
  131.     def __init__(self, this):
  132.         self.this = this
  133.         self.thisown = 0
  134.  
  135.     
  136.     def GetFormat(self, *_args, **_kwargs):
  137.         val = clip_dndc.wxDataObjectSimple_GetFormat(self, *_args, **_kwargs)
  138.         if val:
  139.             val = wxDataFormatPtr(val)
  140.         
  141.         return val
  142.  
  143.     
  144.     def SetFormat(self, *_args, **_kwargs):
  145.         val = clip_dndc.wxDataObjectSimple_SetFormat(self, *_args, **_kwargs)
  146.         return val
  147.  
  148.     
  149.     def __repr__(self):
  150.         return '<%s.%s instance; proxy of C++ wxDataObjectSimple instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  151.  
  152.  
  153.  
  154. class wxDataObjectSimple(wxDataObjectSimplePtr):
  155.     
  156.     def __init__(self, *_args, **_kwargs):
  157.         self.this = clip_dndc.new_wxDataObjectSimple(*_args, **_kwargs)
  158.         self.thisown = 1
  159.  
  160.  
  161.  
  162. class wxPyDataObjectSimplePtr(wxDataObjectSimplePtr):
  163.     
  164.     def __init__(self, this):
  165.         self.this = this
  166.         self.thisown = 0
  167.  
  168.     
  169.     def _setCallbackInfo(self, *_args, **_kwargs):
  170.         val = clip_dndc.wxPyDataObjectSimple__setCallbackInfo(self, *_args, **_kwargs)
  171.         return val
  172.  
  173.     
  174.     def __repr__(self):
  175.         return '<%s.%s instance; proxy of C++ wxPyDataObjectSimple instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  176.  
  177.  
  178.  
  179. class wxPyDataObjectSimple(wxPyDataObjectSimplePtr):
  180.     
  181.     def __init__(self, *_args, **_kwargs):
  182.         self.this = clip_dndc.new_wxPyDataObjectSimple(*_args, **_kwargs)
  183.         self.thisown = 1
  184.         self._setCallbackInfo(self, wxPyDataObjectSimple)
  185.  
  186.  
  187.  
  188. class wxDataObjectCompositePtr(wxDataObjectPtr):
  189.     
  190.     def __init__(self, this):
  191.         self.this = this
  192.         self.thisown = 0
  193.  
  194.     
  195.     def Add(self, *_args, **_kwargs):
  196.         val = clip_dndc.wxDataObjectComposite_Add(self, *_args, **_kwargs)
  197.         _args[0].thisown = 0
  198.         return val
  199.  
  200.     
  201.     def __repr__(self):
  202.         return '<%s.%s instance; proxy of C++ wxDataObjectComposite instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  203.  
  204.  
  205.  
  206. class wxDataObjectComposite(wxDataObjectCompositePtr):
  207.     
  208.     def __init__(self, *_args, **_kwargs):
  209.         self.this = clip_dndc.new_wxDataObjectComposite(*_args, **_kwargs)
  210.         self.thisown = 1
  211.  
  212.  
  213.  
  214. class wxTextDataObjectPtr(wxDataObjectSimplePtr):
  215.     
  216.     def __init__(self, this):
  217.         self.this = this
  218.         self.thisown = 0
  219.  
  220.     
  221.     def GetTextLength(self, *_args, **_kwargs):
  222.         val = clip_dndc.wxTextDataObject_GetTextLength(self, *_args, **_kwargs)
  223.         return val
  224.  
  225.     
  226.     def GetText(self, *_args, **_kwargs):
  227.         val = clip_dndc.wxTextDataObject_GetText(self, *_args, **_kwargs)
  228.         return val
  229.  
  230.     
  231.     def SetText(self, *_args, **_kwargs):
  232.         val = clip_dndc.wxTextDataObject_SetText(self, *_args, **_kwargs)
  233.         return val
  234.  
  235.     
  236.     def __repr__(self):
  237.         return '<%s.%s instance; proxy of C++ wxTextDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  238.  
  239.  
  240.  
  241. class wxTextDataObject(wxTextDataObjectPtr):
  242.     
  243.     def __init__(self, *_args, **_kwargs):
  244.         self.this = clip_dndc.new_wxTextDataObject(*_args, **_kwargs)
  245.         self.thisown = 1
  246.  
  247.  
  248.  
  249. class wxPyTextDataObjectPtr(wxTextDataObjectPtr):
  250.     
  251.     def __init__(self, this):
  252.         self.this = this
  253.         self.thisown = 0
  254.  
  255.     
  256.     def _setCallbackInfo(self, *_args, **_kwargs):
  257.         val = clip_dndc.wxPyTextDataObject__setCallbackInfo(self, *_args, **_kwargs)
  258.         return val
  259.  
  260.     
  261.     def __repr__(self):
  262.         return '<%s.%s instance; proxy of C++ wxPyTextDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  263.  
  264.  
  265.  
  266. class wxPyTextDataObject(wxPyTextDataObjectPtr):
  267.     
  268.     def __init__(self, *_args, **_kwargs):
  269.         self.this = clip_dndc.new_wxPyTextDataObject(*_args, **_kwargs)
  270.         self.thisown = 1
  271.         self._setCallbackInfo(self, wxPyTextDataObject)
  272.  
  273.  
  274.  
  275. class wxBitmapDataObjectPtr(wxDataObjectSimplePtr):
  276.     
  277.     def __init__(self, this):
  278.         self.this = this
  279.         self.thisown = 0
  280.  
  281.     
  282.     def GetBitmap(self, *_args, **_kwargs):
  283.         val = clip_dndc.wxBitmapDataObject_GetBitmap(self, *_args, **_kwargs)
  284.         if val:
  285.             val = wxBitmapPtr(val)
  286.             val.thisown = 1
  287.         
  288.         return val
  289.  
  290.     
  291.     def SetBitmap(self, *_args, **_kwargs):
  292.         val = clip_dndc.wxBitmapDataObject_SetBitmap(self, *_args, **_kwargs)
  293.         return val
  294.  
  295.     
  296.     def __repr__(self):
  297.         return '<%s.%s instance; proxy of C++ wxBitmapDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  298.  
  299.  
  300.  
  301. class wxBitmapDataObject(wxBitmapDataObjectPtr):
  302.     
  303.     def __init__(self, *_args, **_kwargs):
  304.         self.this = clip_dndc.new_wxBitmapDataObject(*_args, **_kwargs)
  305.         self.thisown = 1
  306.  
  307.  
  308.  
  309. class wxPyBitmapDataObjectPtr(wxBitmapDataObjectPtr):
  310.     
  311.     def __init__(self, this):
  312.         self.this = this
  313.         self.thisown = 0
  314.  
  315.     
  316.     def _setCallbackInfo(self, *_args, **_kwargs):
  317.         val = clip_dndc.wxPyBitmapDataObject__setCallbackInfo(self, *_args, **_kwargs)
  318.         return val
  319.  
  320.     
  321.     def __repr__(self):
  322.         return '<%s.%s instance; proxy of C++ wxPyBitmapDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  323.  
  324.  
  325.  
  326. class wxPyBitmapDataObject(wxPyBitmapDataObjectPtr):
  327.     
  328.     def __init__(self, *_args, **_kwargs):
  329.         self.this = clip_dndc.new_wxPyBitmapDataObject(*_args, **_kwargs)
  330.         self.thisown = 1
  331.         self._setCallbackInfo(self, wxPyBitmapDataObject)
  332.  
  333.  
  334.  
  335. class wxFileDataObjectPtr(wxDataObjectSimplePtr):
  336.     
  337.     def __init__(self, this):
  338.         self.this = this
  339.         self.thisown = 0
  340.  
  341.     
  342.     def GetFilenames(self, *_args, **_kwargs):
  343.         val = clip_dndc.wxFileDataObject_GetFilenames(self, *_args, **_kwargs)
  344.         return val
  345.  
  346.     
  347.     def AddFile(self, *_args, **_kwargs):
  348.         val = clip_dndc.wxFileDataObject_AddFile(self, *_args, **_kwargs)
  349.         return val
  350.  
  351.     
  352.     def __repr__(self):
  353.         return '<%s.%s instance; proxy of C++ wxFileDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  354.  
  355.  
  356.  
  357. class wxFileDataObject(wxFileDataObjectPtr):
  358.     
  359.     def __init__(self, *_args, **_kwargs):
  360.         self.this = clip_dndc.new_wxFileDataObject(*_args, **_kwargs)
  361.         self.thisown = 1
  362.  
  363.  
  364.  
  365. class wxCustomDataObjectPtr(wxDataObjectSimplePtr):
  366.     
  367.     def __init__(self, this):
  368.         self.this = this
  369.         self.thisown = 0
  370.  
  371.     
  372.     def TakeData(self, *_args, **_kwargs):
  373.         val = clip_dndc.wxCustomDataObject_TakeData(self, *_args, **_kwargs)
  374.         return val
  375.  
  376.     
  377.     def SetData(self, *_args, **_kwargs):
  378.         val = clip_dndc.wxCustomDataObject_SetData(self, *_args, **_kwargs)
  379.         return val
  380.  
  381.     
  382.     def GetSize(self, *_args, **_kwargs):
  383.         val = clip_dndc.wxCustomDataObject_GetSize(self, *_args, **_kwargs)
  384.         return val
  385.  
  386.     
  387.     def GetData(self, *_args, **_kwargs):
  388.         val = clip_dndc.wxCustomDataObject_GetData(self, *_args, **_kwargs)
  389.         return val
  390.  
  391.     
  392.     def __repr__(self):
  393.         return '<%s.%s instance; proxy of C++ wxCustomDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  394.  
  395.  
  396.  
  397. class wxCustomDataObject(wxCustomDataObjectPtr):
  398.     
  399.     def __init__(self, *_args, **_kwargs):
  400.         self.this = clip_dndc.new_wxCustomDataObject(*_args, **_kwargs)
  401.         self.thisown = 1
  402.  
  403.  
  404.  
  405. class wxURLDataObjectPtr(wxDataObjectCompositePtr):
  406.     
  407.     def __init__(self, this):
  408.         self.this = this
  409.         self.thisown = 0
  410.  
  411.     
  412.     def GetURL(self, *_args, **_kwargs):
  413.         val = clip_dndc.wxURLDataObject_GetURL(self, *_args, **_kwargs)
  414.         return val
  415.  
  416.     
  417.     def SetURL(self, *_args, **_kwargs):
  418.         val = clip_dndc.wxURLDataObject_SetURL(self, *_args, **_kwargs)
  419.         return val
  420.  
  421.     
  422.     def __repr__(self):
  423.         return '<%s.%s instance; proxy of C++ wxURLDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  424.  
  425.  
  426.  
  427. class wxURLDataObject(wxURLDataObjectPtr):
  428.     
  429.     def __init__(self, *_args, **_kwargs):
  430.         self.this = clip_dndc.new_wxURLDataObject(*_args, **_kwargs)
  431.         self.thisown = 1
  432.  
  433.  
  434.  
  435. class wxMetafileDataObjectPtr(wxDataObjectSimplePtr):
  436.     
  437.     def __init__(self, this):
  438.         self.this = this
  439.         self.thisown = 0
  440.  
  441.     
  442.     def SetMetafile(self, *_args, **_kwargs):
  443.         val = clip_dndc.wxMetafileDataObject_SetMetafile(self, *_args, **_kwargs)
  444.         return val
  445.  
  446.     
  447.     def GetMetafile(self, *_args, **_kwargs):
  448.         val = clip_dndc.wxMetafileDataObject_GetMetafile(self, *_args, **_kwargs)
  449.         return val
  450.  
  451.     
  452.     def __repr__(self):
  453.         return '<%s.%s instance; proxy of C++ wxMetafileDataObject instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  454.  
  455.  
  456.  
  457. class wxMetafileDataObject(wxMetafileDataObjectPtr):
  458.     
  459.     def __init__(self, *_args, **_kwargs):
  460.         self.this = clip_dndc.new_wxMetafileDataObject(*_args, **_kwargs)
  461.         self.thisown = 1
  462.  
  463.  
  464.  
  465. class wxClipboardPtr(wxObjectPtr):
  466.     
  467.     def __init__(self, this):
  468.         self.this = this
  469.         self.thisown = 0
  470.  
  471.     
  472.     def Open(self, *_args, **_kwargs):
  473.         val = clip_dndc.wxClipboard_Open(self, *_args, **_kwargs)
  474.         return val
  475.  
  476.     
  477.     def Close(self, *_args, **_kwargs):
  478.         val = clip_dndc.wxClipboard_Close(self, *_args, **_kwargs)
  479.         return val
  480.  
  481.     
  482.     def IsOpened(self, *_args, **_kwargs):
  483.         val = clip_dndc.wxClipboard_IsOpened(self, *_args, **_kwargs)
  484.         return val
  485.  
  486.     
  487.     def AddData(self, *_args, **_kwargs):
  488.         val = clip_dndc.wxClipboard_AddData(self, *_args, **_kwargs)
  489.         _args[0].thisown = 0
  490.         return val
  491.  
  492.     
  493.     def SetData(self, *_args, **_kwargs):
  494.         val = clip_dndc.wxClipboard_SetData(self, *_args, **_kwargs)
  495.         _args[0].thisown = 0
  496.         return val
  497.  
  498.     
  499.     def IsSupported(self, *_args, **_kwargs):
  500.         val = clip_dndc.wxClipboard_IsSupported(self, *_args, **_kwargs)
  501.         return val
  502.  
  503.     
  504.     def GetData(self, *_args, **_kwargs):
  505.         val = clip_dndc.wxClipboard_GetData(self, *_args, **_kwargs)
  506.         return val
  507.  
  508.     
  509.     def Clear(self, *_args, **_kwargs):
  510.         val = clip_dndc.wxClipboard_Clear(self, *_args, **_kwargs)
  511.         return val
  512.  
  513.     
  514.     def Flush(self, *_args, **_kwargs):
  515.         val = clip_dndc.wxClipboard_Flush(self, *_args, **_kwargs)
  516.         return val
  517.  
  518.     
  519.     def UsePrimarySelection(self, *_args, **_kwargs):
  520.         val = clip_dndc.wxClipboard_UsePrimarySelection(self, *_args, **_kwargs)
  521.         return val
  522.  
  523.     
  524.     def __repr__(self):
  525.         return '<%s.%s instance; proxy of C++ wxClipboard instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  526.  
  527.  
  528.  
  529. class wxClipboard(wxClipboardPtr):
  530.     
  531.     def __init__(self, *_args, **_kwargs):
  532.         self.this = clip_dndc.new_wxClipboard(*_args, **_kwargs)
  533.         self.thisown = 1
  534.  
  535.  
  536.  
  537. class wxDropSourcePtr:
  538.     
  539.     def __init__(self, this):
  540.         self.this = this
  541.         self.thisown = 0
  542.  
  543.     
  544.     def _setCallbackInfo(self, *_args, **_kwargs):
  545.         val = clip_dndc.wxDropSource__setCallbackInfo(self, *_args, **_kwargs)
  546.         return val
  547.  
  548.     
  549.     def __del__(self, delfunc = clip_dndc.delete_wxDropSource):
  550.         if self.thisown == 1:
  551.             
  552.             try:
  553.                 delfunc(self)
  554.  
  555.         
  556.  
  557.     
  558.     def SetData(self, *_args, **_kwargs):
  559.         val = clip_dndc.wxDropSource_SetData(self, *_args, **_kwargs)
  560.         return val
  561.  
  562.     
  563.     def GetDataObject(self, *_args, **_kwargs):
  564.         val = clip_dndc.wxDropSource_GetDataObject(self, *_args, **_kwargs)
  565.         if val:
  566.             val = wxDataObjectPtr(val)
  567.         
  568.         return val
  569.  
  570.     
  571.     def SetCursor(self, *_args, **_kwargs):
  572.         val = clip_dndc.wxDropSource_SetCursor(self, *_args, **_kwargs)
  573.         return val
  574.  
  575.     
  576.     def DoDragDrop(self, *_args, **_kwargs):
  577.         val = clip_dndc.wxDropSource_DoDragDrop(self, *_args, **_kwargs)
  578.         return val
  579.  
  580.     
  581.     def base_GiveFeedback(self, *_args, **_kwargs):
  582.         val = clip_dndc.wxDropSource_base_GiveFeedback(self, *_args, **_kwargs)
  583.         return val
  584.  
  585.     
  586.     def __repr__(self):
  587.         return '<%s.%s instance; proxy of C++ wxDropSource instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  588.  
  589.  
  590.  
  591. class wxDropSource(wxDropSourcePtr):
  592.     
  593.     def __init__(self, *_args, **_kwargs):
  594.         self.this = clip_dndc.new_wxDropSource(*_args, **_kwargs)
  595.         self.thisown = 1
  596.         self._setCallbackInfo(self, wxDropSource, 0)
  597.  
  598.  
  599.  
  600. class wxDropTargetPtr:
  601.     
  602.     def __init__(self, this):
  603.         self.this = this
  604.         self.thisown = 0
  605.  
  606.     
  607.     def __repr__(self):
  608.         return '<%s.%s instance; proxy of C++ wxDropTarget instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  609.  
  610.  
  611.  
  612. class wxDropTarget(wxDropTargetPtr):
  613.     
  614.     def __init__(self, this):
  615.         self.this = this
  616.  
  617.  
  618.  
  619. class wxPyDropTargetPtr(wxDropTargetPtr):
  620.     
  621.     def __init__(self, this):
  622.         self.this = this
  623.         self.thisown = 0
  624.  
  625.     
  626.     def _setCallbackInfo(self, *_args, **_kwargs):
  627.         val = clip_dndc.wxPyDropTarget__setCallbackInfo(self, *_args, **_kwargs)
  628.         return val
  629.  
  630.     
  631.     def __del__(self, delfunc = clip_dndc.delete_wxPyDropTarget):
  632.         if self.thisown == 1:
  633.             
  634.             try:
  635.                 delfunc(self)
  636.  
  637.         
  638.  
  639.     
  640.     def GetDataObject(self, *_args, **_kwargs):
  641.         val = clip_dndc.wxPyDropTarget_GetDataObject(self, *_args, **_kwargs)
  642.         if val:
  643.             val = wxDataObjectPtr(val)
  644.         
  645.         return val
  646.  
  647.     
  648.     def SetDataObject(self, *_args, **_kwargs):
  649.         val = clip_dndc.wxPyDropTarget_SetDataObject(self, *_args, **_kwargs)
  650.         if _args:
  651.             _args[0].thisown = 0
  652.         
  653.         return val
  654.  
  655.     
  656.     def base_OnEnter(self, *_args, **_kwargs):
  657.         val = clip_dndc.wxPyDropTarget_base_OnEnter(self, *_args, **_kwargs)
  658.         return val
  659.  
  660.     
  661.     def base_OnDragOver(self, *_args, **_kwargs):
  662.         val = clip_dndc.wxPyDropTarget_base_OnDragOver(self, *_args, **_kwargs)
  663.         return val
  664.  
  665.     
  666.     def base_OnLeave(self, *_args, **_kwargs):
  667.         val = clip_dndc.wxPyDropTarget_base_OnLeave(self, *_args, **_kwargs)
  668.         return val
  669.  
  670.     
  671.     def base_OnDrop(self, *_args, **_kwargs):
  672.         val = clip_dndc.wxPyDropTarget_base_OnDrop(self, *_args, **_kwargs)
  673.         return val
  674.  
  675.     
  676.     def GetData(self, *_args, **_kwargs):
  677.         val = clip_dndc.wxPyDropTarget_GetData(self, *_args, **_kwargs)
  678.         return val
  679.  
  680.     
  681.     def __repr__(self):
  682.         return '<%s.%s instance; proxy of C++ wxPyDropTarget instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  683.  
  684.  
  685.  
  686. class wxPyDropTarget(wxPyDropTargetPtr):
  687.     
  688.     def __init__(self, *_args, **_kwargs):
  689.         self.this = clip_dndc.new_wxPyDropTarget(*_args, **_kwargs)
  690.         self.thisown = 1
  691.         if _args:
  692.             _args[0].thisown = 0
  693.         
  694.         self._setCallbackInfo(self, wxPyDropTarget)
  695.  
  696.  
  697.  
  698. class wxTextDropTargetPtr(wxPyDropTargetPtr):
  699.     
  700.     def __init__(self, this):
  701.         self.this = this
  702.         self.thisown = 0
  703.  
  704.     
  705.     def _setCallbackInfo(self, *_args, **_kwargs):
  706.         val = clip_dndc.wxTextDropTarget__setCallbackInfo(self, *_args, **_kwargs)
  707.         return val
  708.  
  709.     
  710.     def base_OnEnter(self, *_args, **_kwargs):
  711.         val = clip_dndc.wxTextDropTarget_base_OnEnter(self, *_args, **_kwargs)
  712.         return val
  713.  
  714.     
  715.     def base_OnDragOver(self, *_args, **_kwargs):
  716.         val = clip_dndc.wxTextDropTarget_base_OnDragOver(self, *_args, **_kwargs)
  717.         return val
  718.  
  719.     
  720.     def base_OnLeave(self, *_args, **_kwargs):
  721.         val = clip_dndc.wxTextDropTarget_base_OnLeave(self, *_args, **_kwargs)
  722.         return val
  723.  
  724.     
  725.     def base_OnDrop(self, *_args, **_kwargs):
  726.         val = clip_dndc.wxTextDropTarget_base_OnDrop(self, *_args, **_kwargs)
  727.         return val
  728.  
  729.     
  730.     def base_OnData(self, *_args, **_kwargs):
  731.         val = clip_dndc.wxTextDropTarget_base_OnData(self, *_args, **_kwargs)
  732.         return val
  733.  
  734.     
  735.     def __repr__(self):
  736.         return '<%s.%s instance; proxy of C++ wxTextDropTarget instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  737.  
  738.  
  739.  
  740. class wxTextDropTarget(wxTextDropTargetPtr):
  741.     
  742.     def __init__(self, *_args, **_kwargs):
  743.         self.this = clip_dndc.new_wxTextDropTarget(*_args, **_kwargs)
  744.         self.thisown = 1
  745.         self._setCallbackInfo(self, wxTextDropTarget)
  746.  
  747.  
  748.  
  749. class wxFileDropTargetPtr(wxPyDropTargetPtr):
  750.     
  751.     def __init__(self, this):
  752.         self.this = this
  753.         self.thisown = 0
  754.  
  755.     
  756.     def _setCallbackInfo(self, *_args, **_kwargs):
  757.         val = clip_dndc.wxFileDropTarget__setCallbackInfo(self, *_args, **_kwargs)
  758.         return val
  759.  
  760.     
  761.     def base_OnEnter(self, *_args, **_kwargs):
  762.         val = clip_dndc.wxFileDropTarget_base_OnEnter(self, *_args, **_kwargs)
  763.         return val
  764.  
  765.     
  766.     def base_OnDragOver(self, *_args, **_kwargs):
  767.         val = clip_dndc.wxFileDropTarget_base_OnDragOver(self, *_args, **_kwargs)
  768.         return val
  769.  
  770.     
  771.     def base_OnLeave(self, *_args, **_kwargs):
  772.         val = clip_dndc.wxFileDropTarget_base_OnLeave(self, *_args, **_kwargs)
  773.         return val
  774.  
  775.     
  776.     def base_OnDrop(self, *_args, **_kwargs):
  777.         val = clip_dndc.wxFileDropTarget_base_OnDrop(self, *_args, **_kwargs)
  778.         return val
  779.  
  780.     
  781.     def base_OnData(self, *_args, **_kwargs):
  782.         val = clip_dndc.wxFileDropTarget_base_OnData(self, *_args, **_kwargs)
  783.         return val
  784.  
  785.     
  786.     def __repr__(self):
  787.         return '<%s.%s instance; proxy of C++ wxFileDropTarget instance at %s>' % (self.__class__.__module__, self.__class__.__name__, self.this)
  788.  
  789.  
  790.  
  791. class wxFileDropTarget(wxFileDropTargetPtr):
  792.     
  793.     def __init__(self, *_args, **_kwargs):
  794.         self.this = clip_dndc.new_wxFileDropTarget(*_args, **_kwargs)
  795.         self.thisown = 1
  796.         self._setCallbackInfo(self, wxFileDropTarget)
  797.  
  798.  
  799.  
  800. def wxCustomDataFormat(*_args, **_kwargs):
  801.     val = clip_dndc.wxCustomDataFormat(*_args, **_kwargs)
  802.     if val:
  803.         val = wxDataFormatPtr(val)
  804.         val.thisown = 1
  805.     
  806.     return val
  807.  
  808. wxIsDragResultOk = clip_dndc.wxIsDragResultOk
  809. wxDF_INVALID = clip_dndc.wxDF_INVALID
  810. wxDF_TEXT = clip_dndc.wxDF_TEXT
  811. wxDF_BITMAP = clip_dndc.wxDF_BITMAP
  812. wxDF_METAFILE = clip_dndc.wxDF_METAFILE
  813. wxDF_SYLK = clip_dndc.wxDF_SYLK
  814. wxDF_DIF = clip_dndc.wxDF_DIF
  815. wxDF_TIFF = clip_dndc.wxDF_TIFF
  816. wxDF_OEMTEXT = clip_dndc.wxDF_OEMTEXT
  817. wxDF_DIB = clip_dndc.wxDF_DIB
  818. wxDF_PALETTE = clip_dndc.wxDF_PALETTE
  819. wxDF_PENDATA = clip_dndc.wxDF_PENDATA
  820. wxDF_RIFF = clip_dndc.wxDF_RIFF
  821. wxDF_WAVE = clip_dndc.wxDF_WAVE
  822. wxDF_UNICODETEXT = clip_dndc.wxDF_UNICODETEXT
  823. wxDF_ENHMETAFILE = clip_dndc.wxDF_ENHMETAFILE
  824. wxDF_FILENAME = clip_dndc.wxDF_FILENAME
  825. wxDF_LOCALE = clip_dndc.wxDF_LOCALE
  826. wxDF_PRIVATE = clip_dndc.wxDF_PRIVATE
  827. wxDF_HTML = clip_dndc.wxDF_HTML
  828. wxDF_MAX = clip_dndc.wxDF_MAX
  829. cvar = clip_dndc.cvar
  830. wxFormatInvalid = wxDataFormatPtr(clip_dndc.cvar.wxFormatInvalid)
  831. wxTheClipboard = wxClipboardPtr(clip_dndc.cvar.wxTheClipboard)
  832. wxDrag_CopyOnly = clip_dndc.wxDrag_CopyOnly
  833. wxDrag_AllowMove = clip_dndc.wxDrag_AllowMove
  834. wxDrag_DefaultMove = clip_dndc.wxDrag_DefaultMove
  835. wxDragError = clip_dndc.wxDragError
  836. wxDragNone = clip_dndc.wxDragNone
  837. wxDragCopy = clip_dndc.wxDragCopy
  838. wxDragMove = clip_dndc.wxDragMove
  839. wxDragLink = clip_dndc.wxDragLink
  840. wxDragCancel = clip_dndc.wxDragCancel
  841.